DataSource for Entity Framework in WPF
C1.LiveLinq.LiveViews Namespace / View<T> Class / SelectMany Method / SelectMany<TResult>(Expression<Func<T,IObservableSource<TResult>>>) Method
The type of the elements of the resulting view.
A transform function to apply to each element.

In This Topic
    SelectMany<TResult>(Expression<Func<T,IObservableSource<TResult>>>) Method
    In This Topic
    Projects each element of this view to a collection of TResult and flattens the resulting collections into one view.
    Syntax
    'Declaration
     
    Public Overloads Function SelectMany(Of TResult)( _
       ByVal selector As Expression(Of Func(Of T,IObservableSource(Of TResult))) _
    ) As View(Of TResult)

    Parameters

    selector
    A transform function to apply to each element.

    Type Parameters

    TResult
    The type of the elements of the resulting view.

    Return Value

    A view whose elements are the result of invoking the one-to-many transform function on each element of this view.
    See Also